home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / StartupTools / Bind_NamesII.lha / Macros.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-14  |  188 b   |  5 lines

  1. #define FOREACHNODE(list,node,next)    \
  2.     for( node = ( APTR ) ( ( ( struct List * ) ( list ) )->lh_Head );    \
  3.         ( next = ( APTR ) ( ( ( struct Node * ) node )->ln_Succ ) );    \
  4.         node = next )
  5.